runtime.mspan.allocCache (field)

9 uses

	runtime (current package)
		malloc.go#L928: 	theBit := sys.TrailingZeros64(s.allocCache) // Is there a free object in the allocCache?
		malloc.go#L936: 			s.allocCache >>= uint(theBit + 1)
		mbitmap.go#L1054: 	s.allocCache = ^aCache
		mbitmap.go#L1071: 	aCache := s.allocCache
		mbitmap.go#L1084: 		aCache = s.allocCache
		mbitmap.go#L1095: 	s.allocCache >>= uint(bitIndex + 1)
		mcentral.go#L195: 	s.allocCache >>= s.freeindex % 64
		mheap.go#L446: 	allocCache uint64
		mheap.go#L1424: 		s.allocCache = ^uint64(0) // all 1s indicating all free.